All files / web/src/app/api/download/assets/[id] route.ts

0% Statements 0/29
0% Branches 0/1
0% Functions 0/1
0% Lines 0/29

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30                                                           
import { NextResponse } from 'next/server'
import { withAuth } from '@/lib/auth/withAuth'
import { assetStore } from '@/lib/asset-store'

export const GET = withAuth(async (_request, { params }) => {
  try {
    const { id } = (await params) as { id: string }

    const asset = await assetStore.get(id)
    if (!asset) {
      return NextResponse.json({ error: 'Asset not found' }, { status: 404 })
    }

    // Set appropriate headers for download
    const headers = new Headers()
    headers.set('Content-Type', asset.mimeType)
    headers.set('Content-Disposition', `attachment; filename="${asset.filename}"`)
    headers.set('Content-Length', asset.data.length.toString())
    headers.set('Cache-Control', 'no-cache, no-store, must-revalidate')

    return new NextResponse(new Uint8Array(asset.data), {
      status: 200,
      headers,
    })
  } catch (error) {
    console.error('Asset download error:', error)
    return NextResponse.json({ error: 'Failed to download asset' }, { status: 500 })
  }
})